home *** CD-ROM | disk | FTP | other *** search
/ TPUG - Toronto PET Users Group / TPUG Users Group CD / TPUG Users Group CD.iso / MSDOS / (m)aal / CUTFILE2.DOC < prev    next >
Text File  |  1987-10-11  |  3KB  |  55 lines

  1.                                Doc for Cutfile.pas
  2.           This program  simply breaks up a large file into smaller pieces so
  3.      that it can be transferred to floppy disks.  I first  wrote the program
  4.      to break  up large  data files  to take  from office  to home, but have
  5.      subsequently used  it largely  in conjunction  with archiving programs.
  6.      This allows  one to archive a large subdirectory and then back it up to
  7.      floppies. This program is  also  useful  for  distributing,  say, large
  8.      (greater than  360K) database files on 360K floppies. Since the program
  9.      is not needed to  restore the  files (the  copy command  will suffice),
  10.      multiple distribution is simplified.
  11.           To run  the program, you can first compile the program using Turbo
  12.      Pascal, version 3 or you can  use my  compilation enclosed.  I used the
  13.      Turbo Optimizer  from Turbo  Power Software  to reduce  the size of the
  14.      executable. 
  15.           You will be prompted for the source filename as well as the output
  16.      filename. Do not use an extension on the outfile name since the program
  17.      creates an extension for the output  file. It  is possible  to send the
  18.      output files to floppy disks by responding, for example, a:outfilename.
  19.      You will be prompted to change  the  floppy.  If  you  don't,  then the
  20.      program will keep asking until you get some free space. Pressing Ctrl C
  21.      will abort the program.
  22.           This version will use any valid, logical dos  disk and  will first
  23.      check to see how much disk space is available; it will then fill up the
  24.      disk if the source program is big enough.
  25.           This program does the job of  taking  apart  the  large  file into
  26.      smaller chunks.  I had  written a program to put the smaller files into
  27.      larger chunks but  have  not  included  it.  Since  the  files  are not
  28.      altered, it is possible to reconstruct the file using the copy command.
  29.      For example, if  the  program  created  two  files,  use  the following
  30.      command.
  31.      copy/b outfilename.1 + outfilename.2 Originalfilename
  32.      The /b is NECESSARY.
  33.  
  34.      If this  program has  helped you  out enough so that you are willing to
  35.      subsidize it, I would  humbly  accept  your  contribution.  Please send
  36.      checks to:
  37.  
  38.      Scott E. Lindsey
  39.      803 W. Walnut
  40.      Lompoc, Ca. 93436
  41.  
  42.      I can also be reached electronically at the following locations:
  43.      -    Gene Plantz BBS, Chicago, ID0371
  44.      -    SELINZ@NUACC.bitnet
  45.      -    Nutug BBS, (312)491-3215
  46.  
  47.      Scott E. Lindsey, October 1987
  48.      This is version 2.
  49.  
  50.  
  51.  
  52.  
  53.  
  54.                                           1
  55.